home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / perl / 5.10.0 / Module / Build / Platform / aix.pm next >
Encoding:
Perl POD Document  |  2009-06-26  |  833 b   |  41 lines

  1. package Module::Build::Platform::aix;
  2.  
  3. use strict;
  4. use vars qw($VERSION);
  5. $VERSION = '0.2808_01';
  6. $VERSION = eval $VERSION;
  7. use Module::Build::Platform::Unix;
  8.  
  9. use vars qw(@ISA);
  10. @ISA = qw(Module::Build::Platform::Unix);
  11.  
  12. # This class isn't necessary anymore, but we can't delete it, because
  13. # some people might still have the old copy in their @INC, containing
  14. # code we don't want to execute, so we have to make sure an upgrade
  15. # will replace it with this empty subclass.
  16.  
  17. 1;
  18. __END__
  19.  
  20.  
  21. =head1 NAME
  22.  
  23. Module::Build::Platform::aix - Builder class for AIX platform
  24.  
  25. =head1 DESCRIPTION
  26.  
  27. This module provides some routines very specific to the AIX
  28. platform.
  29.  
  30. Please see the L<Module::Build> for the general docs.
  31.  
  32. =head1 AUTHOR
  33.  
  34. Ken Williams <kwilliams@cpan.org>
  35.  
  36. =head1 SEE ALSO
  37.  
  38. perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
  39.  
  40. =cut
  41.